Telegram Group & Telegram Channel
Forwarded from Raspberry Project
اولین پروژه با میکروپایتون را شروع کنید!!!!


برد میکروپایتون را راه اندازی کنید و وارد صفحه ترمینال IDLE Python شوید .

ابتدا کتابخانه Machine را فراخوانی کنید

>>import machine

و سپس یکی از پینهای برد را به حالت خروجی تنظیم میکنیم

>>led = machine.Pin(Pin Number, machine.Pin.OUT)

در دستور بالا به جای
Pin Number

شماره پین مورد نظر را وارد کنید

..با دستور زیر میتوانید led متصل به پین مورد نظر را روشن کنید . یا به عبارتی پین مورد نظر را 1 کنید .

>>led.high()

و با دستور زیر میتوانید Pin را به حالت ۰منطقی و یا خاموش ببرید

>>led.low()

تا اینجا به صورتی دستی توانستیم یک پین را ۰ و ۱ کنیم . حال میخواهیم چروژه چشمک زن را به صورت اتوماتیک اجرا کنیم .

کتابخانه Time را جهت ایجاد تاخیر فراخوانی میکنیم

>>import time

و به کمک یک حلقه بینهایت میتوانید این عملیات چشمک زدن را اجرا نمایید

>> while True:
led.high()
time.sleep(0.5)
led.low()
time.sleep(0.5)


پایان اولین پروژه با میکرو پایتون

اسکریپت به صورت کامل 👇👇👇

#BLINK MICRO PYTHON
#--------------------------
import machine
import time
led = machine.Pin(15,machine.Pin.OUT)
while True:
led.high()
time.sleep(0.5)
led.low()
time.sleep(0.5)
#--------------------------
# On behalf of Eng Meysam Mz
#---------------------------


@Raspberryproject
@Raspberry_Python
@micropython_iot



tg-me.com/micropython_iot/33
Create:
Last Update:

اولین پروژه با میکروپایتون را شروع کنید!!!!


برد میکروپایتون را راه اندازی کنید و وارد صفحه ترمینال IDLE Python شوید .

ابتدا کتابخانه Machine را فراخوانی کنید

>>import machine

و سپس یکی از پینهای برد را به حالت خروجی تنظیم میکنیم

>>led = machine.Pin(Pin Number, machine.Pin.OUT)

در دستور بالا به جای
Pin Number

شماره پین مورد نظر را وارد کنید

..با دستور زیر میتوانید led متصل به پین مورد نظر را روشن کنید . یا به عبارتی پین مورد نظر را 1 کنید .

>>led.high()

و با دستور زیر میتوانید Pin را به حالت ۰منطقی و یا خاموش ببرید

>>led.low()

تا اینجا به صورتی دستی توانستیم یک پین را ۰ و ۱ کنیم . حال میخواهیم چروژه چشمک زن را به صورت اتوماتیک اجرا کنیم .

کتابخانه Time را جهت ایجاد تاخیر فراخوانی میکنیم

>>import time

و به کمک یک حلقه بینهایت میتوانید این عملیات چشمک زدن را اجرا نمایید

>> while True:
led.high()
time.sleep(0.5)
led.low()
time.sleep(0.5)


پایان اولین پروژه با میکرو پایتون

اسکریپت به صورت کامل 👇👇👇

#BLINK MICRO PYTHON
#--------------------------
import machine
import time
led = machine.Pin(15,machine.Pin.OUT)
while True:
led.high()
time.sleep(0.5)
led.low()
time.sleep(0.5)
#--------------------------
# On behalf of Eng Meysam Mz
#---------------------------


@Raspberryproject
@Raspberry_Python
@micropython_iot

BY Micropython & IOT


Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283

Share with your friend now:
tg-me.com/micropython_iot/33

View MORE
Open in Telegram


Micropython & IOT Telegram | DID YOU KNOW?

Date: |

Should You Buy Bitcoin?

In general, many financial experts support their clients’ desire to buy cryptocurrency, but they don’t recommend it unless clients express interest. “The biggest concern for us is if someone wants to invest in crypto and the investment they choose doesn’t do well, and then all of a sudden they can’t send their kids to college,” says Ian Harvey, a certified financial planner (CFP) in New York City. “Then it wasn’t worth the risk.” The speculative nature of cryptocurrency leads some planners to recommend it for clients’ “side” investments. “Some call it a Vegas account,” says Scott Hammel, a CFP in Dallas. “Let’s keep this away from our real long-term perspective, make sure it doesn’t become too large a portion of your portfolio.” In a very real sense, Bitcoin is like a single stock, and advisors wouldn’t recommend putting a sizable part of your portfolio into any one company. At most, planners suggest putting no more than 1% to 10% into Bitcoin if you’re passionate about it. “If it was one stock, you would never allocate any significant portion of your portfolio to it,” Hammel says.

Spiking bond yields driving sharp losses in tech stocks

A spike in interest rates since the start of the year has accelerated a rotation out of high-growth technology stocks and into value stocks poised to benefit from a reopening of the economy. The Nasdaq has fallen more than 10% over the past month as the Dow has soared to record highs, with a spike in the 10-year US Treasury yield acting as the main catalyst. It recently surged to a cycle high of more than 1.60% after starting the year below 1%. But according to Jim Paulsen, the Leuthold Group's chief investment strategist, rising interest rates do not represent a long-term threat to the stock market. Paulsen expects the 10-year yield to cross 2% by the end of the year. A spike in interest rates and its impact on the stock market depends on the economic backdrop, according to Paulsen. Rising interest rates amid a strengthening economy "may prove no challenge at all for stocks," Paulsen said.

Micropython & IOT from nl


Telegram Micropython & IOT
FROM USA